home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / GCC / CLIB / !clib / h / varargs < prev   
Text File  |  1997-05-22  |  422b  |  24 lines

  1. /* varargs.h
  2.  
  3.    Shared C Library support.  */
  4.  
  5. #ifndef __VARARGS_H
  6. #define __VARARGS_H
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12. /* GCC has its own private copy of varargs.h  */
  13. #ifndef __GNUC__
  14. /* Place a copy of <varargs.h> that is suitable for your compiler
  15.    after this comment.  Then remove the #error line.  */
  16. #error varargs.h has not been implemented for this compiler
  17.  
  18. #endif
  19.  
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif
  24.